home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / wfc007.000 / include / dcb.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-08  |  692 b   |  36 lines

  1. #if ! defined( DCB_LASS_HEADER )
  2.  
  3. /*
  4. ** Author: Samuel R. Blackburn
  5. ** CI$: 76300,326
  6. ** Internet: sammy@sed.csc.com
  7. **
  8. ** You can use it any way you like.
  9. */
  10.  
  11. #define DCB_CLASS_HEADER
  12.  
  13. class CDeviceControlBlock : public _DCB
  14. {
  15.    public:
  16.  
  17.       CDeviceControlBlock();
  18.       CDeviceControlBlock( const DCB * source );
  19.  
  20.       /*
  21.       ** Destructor should be virtual according to MSJ article in Sept 1992
  22.       ** "Do More with Less Code:..."
  23.       */
  24.  
  25.       virtual ~CDeviceControlBlock();
  26.  
  27.       /*
  28.       ** Methods
  29.       */
  30.  
  31.       void Copy( const CDeviceControlBlock& source );
  32.       void Copy( const DCB *source );
  33. };
  34.  
  35. #endif // OVERLAPPED_CLASS_HEADER
  36.